RegistryPolicy.WriteListOfValues Method (RegistryHive, String, String[], RegistryValueKind)

 

Writes a list of registry-based policy settings that configure String or ExpandString registry values. The registry values are specified by an array of value data. The policy settings are not additive.

Namespace:   Microsoft.GroupPolicy
Assembly:  Microsoft.GroupPolicy.Management (in Microsoft.GroupPolicy.Management.dll)

Syntax

public void WriteListOfValues(
    RegistryHive hive,
    string keyPath,
    string[] values,
    RegistryValueKind type
)
public:
void WriteListOfValues(
    RegistryHive hive,
    String^ keyPath,
    array<String^>^ values,
    RegistryValueKind type
)
member WriteListOfValues : 
        hive:RegistryHive *
        keyPath:string *
        values:string[] *
        type:RegistryValueKind -> unit
Public Sub WriteListOfValues (
    hive As RegistryHive,
    keyPath As String,
    values As String(),
    type As RegistryValueKind
)

Parameters

  • values
    Type: System.String[]

    An array of strings that contains the value data.

Exceptions

Exception Condition
ObjectDisposedException

The RegistryPolicy is disposed.

InvalidOperationException

The RegistryPolicy instance is read-only.

ArgumentNullException

keyPath is null or values is null

ArgumentException

keyPath is an empty string (“”)

-or-

values is an empty string (“”)

-or-

hive is not CurrentUser or LocalMachine

-or-

type is not ExpandString or String

See Also

WriteListOfValues Overload
RegistryPolicy Class
Microsoft.GroupPolicy Namespace

Return to top